home *** CD-ROM | disk | FTP | other *** search
/ The Uninvited Press Kit / THE UNINVITED.iso / pc / program.dxr / Internal_39_Flash Navigaton.ls < prev    next >
Encoding:
Text File  |  2008-12-30  |  1.5 KB  |  56 lines

  1. property gowhere, soundMember, soundChannel, loops, pCursorChange, pCursorChoice
  2.  
  3. on getBehaviorDescription me
  4.   return "Rollover,Sound, Marker & Cursor" & RETURN & RETURN & "Just place on Sprite and fill-in Properties"
  5. end
  6.  
  7. on getBehaviorTooltip me
  8.   return "Use with any Flash sprite member. Fill-in destination"
  9. end
  10.  
  11. on getPropertyDescriptionList me
  12.   xlist = [:]
  13.   addProp(xlist, #gowhere, [#comment: "Navigate to which Frame Label?:", #format: #marker, #default: #bitmap])
  14.   addProp(xlist, #soundMember, [#comment: "Sound to play", #format: #sound, #default: VOID])
  15.   addProp(xlist, #soundChannel, [#comment: "Sound channel", #format: #integer, #default: 3, #range: [1, 2, 3, 4]])
  16.   addProp(xlist, #loops, [#comment: "How many loops:", #format: #integer, #default: 1, #range: [1, 2, 3]])
  17.   addProp(xlist, #pCursorChoice, [#default: 1, #format: #boolean, #comment: "Do you want a cursor change?"])
  18.   addProp(xlist, #pCursorChange, [#format: #cursor, #comment: "Cursor to change to", #default: 280])
  19.   return xlist
  20. end
  21.  
  22. on beginSprite me
  23.   mySprite = sprite(me.spriteNum)
  24. end
  25.  
  26. on changeCur
  27.   if pCursorChoice = 1 then
  28.     cursor(pCursorChange)
  29.   else
  30.     cursor(0)
  31.   end if
  32. end
  33.  
  34. on playMySound me
  35.   soundStatus = sound(soundChannel)
  36.   if soundStatus = 4 then
  37.     sound(soundChannel).play()
  38.   else
  39.     sound(soundChannel).play([#member: soundMember, #loopCount: loops])
  40.   end if
  41. end
  42.  
  43. on mouseUp me
  44.   playMySound()
  45.   go(gowhere)
  46.   cursor(0)
  47. end
  48.  
  49. on mouseEnter me
  50.   changeCur()
  51. end
  52.  
  53. on mouseLeave me
  54.   cursor(0)
  55. end
  56.